home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CAD Tools
/
CAD Tools.iso
/
programs
/
cad009.exe
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-04-06
|
1KB
|
42 lines
@echo off
rem
rem First check for argument
rem ------------------------------------
if .%1 == . goto putusage
goto argok
:putusage
echo Usage: From the MS-DOS prompt, change to the directory
echo where AutoCAD(R) Release 12 for Windows is
echo installed and type:
echo.
echo a:install a:
echo.
echo where a: is your floppy drive.
goto done
:argok
echo.
echo AutoCAD(R) Release 12_c3 for Windows update utility.
echo v1.0(28Mar94)
echo.
echo This program will update several files in your current
echo AutoCAD(R) Release 12 for Windows installation from level
echo c1, c1a, or c1c to level c3. If your current installation
echo does not include all files, installing more options later
echo will require rerunning this program.
echo.
echo Be sure the current directory is where AutoCAD(R) Release 12
echo for Windows is installed. Also, back up any files you may
echo have customized (e.g. ACAD.MNU, ACAD.PGP, etc.) before
echo proceeding.
echo.
echo Press CTRL-C to exit now --OR--
pause
copy %1\r12c3fix.bat .
copy %1\patch.exe .
copy %1\readme.1st .
r12c3fix %1
:done